home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / string / strcmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-09  |  274 b   |  14 lines

  1. #include <string.h>
  2.  
  3. /************************************************************************/
  4.  
  5. int (strcmp)(const char *String1, const char *String2)
  6.  
  7. {
  8. #ifdef __GNUC__
  9.   return __inlined_strcmp(String1,String2);
  10. #else
  11.   return __builtin_strcmp(String1,String2);
  12. #endif
  13. }
  14.